/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── VARIABLES ── */
:root {
  --olive-dark: #4a4e3b;       /* announcement bar bg */
  --cream: #f5f3ee;            /* nav bg */
  --text-dark: #2e2e2a;        /* nav links & logo */
  --hero-green: #5a6645;       /* CTA button bg */
  --hero-green-hover: #4a5437; /* CTA button hover */
  --white: #ffffff;
}

/* ── BASE ── */
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--olive-dark);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.announcement-bar a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.15em;
}

.announcement-bar a:hover {
  opacity: 0.8;
}

/* ── NAV ── */
nav {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 80px;
  border-bottom: 1px solid rgba(46, 46, 42, 0.1);
}

.nav-left {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-left a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-left a:hover {
  opacity: 0.55;
}

/* Center logo */
.nav-logo {
  text-align: center;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  display: block;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: opacity 0.2s;
}

.nav-icon-btn:hover {
  opacity: 0.5;
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-dark);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;

    /* Replace with your image URL */
    background: url("./assests/Summer-Outfit-Group_DT.webp") center center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    color: #fff;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: Georgia, serif;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-block;
    padding: 14px 28px;
    background: #7a7359;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-hero:hover {
    background: #5f5944;
}


/* ── Featured Collection ── */
/* Category Section */
.category-section {
    padding: 80px 0;
    background: #f5f4f1;
}

.category-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.category-overlay h2 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: Georgia, serif;
}

.category-btn {
    background: #7d7960;
    color: #fff;
    text-decoration: none;

    padding: 15px 38px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;

    transition: 0.3s ease;
}

.category-btn:hover {
    background: #5d5947;
}

/* Mobile */
@media (max-width: 991px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card img {
        height: 500px;
    }

    .category-overlay h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .category-section {
        padding: 50px 0;
    }

    .category-card img {
        height: 400px;
    }

    .category-overlay h2 {
        font-size: 2rem;
    }

    .category-btn {
        padding: 12px 25px;
        font-size: 12px;
    }
}

.featured-section {
    background: #f7f6f2;
    padding: 90px 0;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 42px;
    color: #5f6247;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: Georgia, serif;
}

.section-header p {
    color: #6d6d6d;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.promise-btn {
    display: inline-block;
    background: #6b7054;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.promise-btn:hover {
    background: #555a42;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: transparent;
}

.product-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    margin-bottom: 25px;
}

.product-content h3 {
    font-size: 30px;
    color: #5f6247;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.product-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.shop-btn {
    display: inline-block;
    text-decoration: none;
    color: #6b7054;
    border: 1px solid #c7c7c7;
    padding: 12px 24px;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.shop-btn:hover {
    background: #6b7054;
    color: #fff;
    border-color: #6b7054;
}



/* ── Testionmoails  ── */


.testimonial-section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #5f6247;
}

/* Container Layout */
.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual Card Styling */
.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 40px 30px;
    transition: transform 0.3s ease;
}

/* Featured Card (The middle one) */
.testimonial-card.featured {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 2;
    transform: scale(1.05); /* Slightly larger */
}

/* Card Elements */
.stars {
    color: #555;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonial-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #5f6247;
}

.testimonial-text {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: #666;
}

.author {
    font-size: 0.85rem;
    text-transform: capitalize;
    font-weight: 400;
    color: #333;
}

/* Pagination Dots */
.pagination-dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination-dots span {
    width: 6px;
    height: 6px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
}

.pagination-dots span.active {
    background-color: #4a4a4a;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .testimonial-card.featured {
        transform: scale(1);
    }
    .testimonial-container {
        flex-direction: column;
    }
}


/* New Arrival */

/* Container */
/* Layout Container */
.shop-arrivals {
    border-top: 1px solid black;
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

/* Header Styling */
.shop-arrivals__header {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

.shop-arrivals__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #4a5444; /* Muted Green-Grey */
    margin: 0;
}

.shop-arrivals__view-link {
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    border: 1px solid #d1d1d1;
    padding: 10px 24px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.shop-arrivals__view-link:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

/* Product Grid */
.shop-arrivals__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Individual Card Styling */
.shop-item {
    display: flex;
    flex-direction: column;
}

.shop-item__visual {
    position: relative;
    background-color: #efeeea; /* Card bg color from image */
    aspect-ratio: 3 / 4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* UI Elements inside Image */
.shop-item__wishlist {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.4rem;
    color: #444;
    cursor: pointer;
    z-index: 2;
}

.shop-item__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #5d6352; /* Olive Badge */
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 5px 12px;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Text Content Styling */
.shop-item__details {
    margin-top: 15px;
}

.shop-item__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.shop-item__row--primary {
    margin-bottom: 4px;
}

.shop-item__name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
}

.shop-item__price {
    font-size: 0.85rem;
    color: #333;
}

.shop-item__row--secondary {
    color: #777;
    font-size: 0.8rem;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .shop-arrivals__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
    .shop-arrivals__grid { grid-template-columns: 1fr; }
    .shop-arrivals__header { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 20px; 
    }
}

/* Responsive */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-card img {
        height: 500px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .featured-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .product-card img {
        height: 350px;
    }
}



@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .btn-hero {
        padding: 12px 22px;
        font-size: 12px;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: 64px;
  }

  .nav-left {
    gap: 20px;
  }

  .nav-left a:nth-child(n+3) {
    display: none;
  }

  .nav-logo-text {
    font-size: 1.45rem;
  }

  .hero {
    aspect-ratio: 4/3;
    min-height: 320px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}



.site-footer {
    background-color: #686d54; /* Olive Green */
    color: #fcfbf7;
    padding: 60px 40px 30px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr 1fr;
    gap: 30px;
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #fcfbf7;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: opacity 0.2s;
}

.footer-list a:hover {
    opacity: 0.7;
}

/* Newsletter Column */
.signup-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.newsletter-input-group {
    position: relative;
    border-bottom: 1px solid #fcfbf7;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.newsletter-input-group input {
    background: transparent;
    border: none;
    color: #fcfbf7;
    padding: 10px 0;
    width: 100%;
    outline: none;
    font-size: 0.85rem;
}

.newsletter-input-group input::placeholder {
    color: #fcfbf7;
}

.newsletter-input-group i {
    font-size: 1.1rem;
    margin-left: 10px;
}

/* Socials */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fcfbf7;
    font-size: 1.2rem;
    text-decoration: none;
}

/* Logo */
.footer-branding {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-logo-img {
    width: 90px;
    height: auto;
    filter: brightness(1.2); /* Helps make the logo pop if it's white/gold */
}

/* Bottom Area */
.footer-bottom {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    cursor: pointer;
}

.footer-country img {
    width: 18px;
}

.footer-copyright {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-branding {
        grid-column: span 3;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .footer-branding {
        grid-column: span 1;
    }
}
